Adapt to the change to use frame instead of bounds when resizing windows.
authorRichard Hult <richard@imendio.com>
Fri, 15 Feb 2008 19:06:49 +0000 (19:06 +0000)
committerRichard Hult <rhult@src.gnome.org>
Fri, 15 Feb 2008 19:06:49 +0000 (19:06 +0000)
2008-02-15  Richard Hult  <richard@imendio.com>

* gdk/quartz/GdkQuartzView.c: Adapt to the change to use frame
instead of bounds when resizing windows.

svn path=/trunk/; revision=19580

ChangeLog
gdk/quartz/GdkQuartzView.c

index 88b3c482437713609f621c36da26e4400bc41f87..1fa970b39b980e29ed9411c93ed2a3a915798d80 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-02-15  Richard Hult  <richard@imendio.com>
+
+       * gdk/quartz/GdkQuartzView.c: Adapt to the change to use frame
+       instead of bounds when resizing windows.
+
 2008-02-15  Matthias Clasen  <mclasen@redhat.com>
 
        * gdk/x11/gdkkeys-x11.c:
index 7395a8cceb1cad322ebe750ddbdfb8722cdc8093..511e6d1b99839824efb9b9718ed314ecbe85cf3a 100644 (file)
     }
 }
 
--(void)setBounds:(NSRect)bounds
+-(void)setFrame:(NSRect)frame
 {
-  [super setBounds:bounds];
+  [super setFrame:frame];
   [self updateTrackingRect];
 }